home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
s
/
ep_helpmode-toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
213b
|
16 lines
/* EaglePlayer - toggles Helpmode */
address 'rexx_EP'
options results
status G hel
if result == "no" then do
helpmode yes
say "Helpmode is now on !"
end
else do
helpmode no
say "Helpmode is now off !"
end